home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* SCREEN SAVER */
- /* For Turbo C compiler */
- /* */
- /* M\Cooper */
- /* 3425 Chestnut Ridge Rd. */
- /* Grantsville, MD 21536 */
- /* email: thegrendel@aol.com */
- /* */
- /* This snippet of code is placed in the Public Domain */
- /**************************************************************************/
-
-
- #include <conio.h>
-
- #define SPECIAL_KEY ','
- /* Or use your own "secret" key */
-
- void main()
- {
-
-
- clrscr();
- _setcursortype( _NOCURSOR );
-
- while ( getch() != SPECIAL_KEY )
- ;
-
- _setcursortype( _SOLIDCURSOR );
-
- }
-